home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / scrdl_21.zip / SCRIPTDL.DOC < prev    next >
Text File  |  1992-03-06  |  3KB  |  85 lines

  1.  
  2.   SCRIPTDL.exe - convert from script file format to command delimited
  3.                  text file.  Version 2.1   03-06-92
  4.  
  5.                 ------------------------------------------
  6.  
  7.    Scriptdl.exe is a fairly simple-minded program that I use to convert my
  8. PCBoard version 14.5a NEWASK "answer" file into a comma delimited file for 
  9. later input to a database program.  It converts a file of records that look
  10. something like this:
  11.  
  12.    *************************************************************
  13.    FROM: SOME USER, 02-12-92 (18:00) Node 3 Sec 10 Exp 02-20-92
  14.    Q: Your Address?
  15.    A: 123 E. Nowhere
  16.    Q: City, State, Zip?
  17.    A: Podunk, KS, 12345
  18.    Q: Phone ?
  19.    A: 555-1212
  20.  
  21.  
  22. To a file with records that look like this:
  23.  
  24.   "SOME USER", "02-12-92", "123 E. Nowhere", "Podunk, KS, 12345", "555-1212"
  25.  
  26.  
  27.                   ------------------------------------------
  28.  
  29. To use the program, type:
  30.  
  31.    scriptdl   answer_file_name   output_file_name
  32.  
  33. on the command line, or type scriptdl and press ENTER to see a usage
  34. reminder.  If the input file (answer_file_name) can not be found, the
  35. program will complain and exit.  If the output file (output_file_name)
  36. can not be opened in append mode, the program will also issue a complaint
  37. and exit.
  38.  
  39.                   ------------------------------------------
  40.  
  41.  
  42. Some notes:
  43. ===========
  44.  
  45. *  The user name and log-on date from the "FROM:" line are always the first 
  46.    two output fields, unless the file does not have any "FROM:" lines.
  47.  
  48. *  All "A:" lines are turned into an output field in the output file.
  49.  
  50. *  All other lines are ignored.
  51.  
  52. *  The input file is only READ from, it is not changed in any manner.
  53.  
  54. *  The output file is always APPENEDED to.
  55.  
  56. The last two notes mean that if you run the program several times, you
  57. will end up with several copies of the some records in the file - if you
  58. want the input file deleted after being processed - you have to do it
  59. yourself.
  60.  
  61.  
  62.  
  63. Unlike other document files I have read, I am not going into an entire 
  64. chapter here on how this program is guaranteed to basically do nothing, 
  65. and if the "nothing that it does" happens to destroy your hard disk, 
  66. that is your own tough luck.
  67.  
  68. This program works for me on my system and does what I need it to do.
  69. If it doesn't work for you on your system - please let me know and I will 
  70. attempt to fix it.  You use the program at your own risk, and if you are
  71. silly enough to name COMMAND.COM as your output file then you deserve what
  72. you get!  Just remember how much you paid for this. <g> .......
  73.  
  74.                    Robert Briggs
  75.  
  76.                    SYSOP of Bob and Kathy's BBS
  77.                    P.O. Box 571241
  78.                    Murray, UT   84157-1241
  79.  
  80.                    (801) 262-3822 (USR HST Dual Standard)
  81.                    FidoNet: 1:311/11
  82.  
  83.  
  84.  
  85.